home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / lisp / mailabbrev.el < prev    next >
Text File  |  1993-07-01  |  23KB  |  562 lines

  1. ;;; mailabbrev.el --- abbrev-expansion of mail aliases.
  2.  
  3. ;;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Jamie Zawinski <jwz@lucid.com>
  6. ;; Maintainer: Jamie Zawinski <jwz@lucid.com>
  7. ;; Created: 19 Oct 90
  8. ;; Keywords: mail
  9.  
  10. ;;; This file is part of GNU Emacs.
  11.  
  12. ;;; GNU Emacs is free software; you can redistribute it and/or modify
  13. ;;; it under the terms of the GNU General Public License as published by
  14. ;;; the Free Software Foundation; either version 2, or (at your option)
  15. ;;; any later version.
  16.  
  17. ;;; GNU Emacs is distributed in the hope that it will be useful,
  18. ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. ;;; GNU General Public License for more details.
  21.  
  22. ;;; You should have received a copy of the GNU General Public License
  23. ;;; along with GNU Emacs; see the file COPYING.  If not, write to
  24. ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. ;;; Commentary:
  27.  
  28. ;;; This file ensures that, when the point is in a To:, CC:, BCC:, or From: 
  29. ;;; field, word-abbrevs are defined for each of your mail aliases.  These
  30. ;;; aliases will be defined from your .mailrc file (or the file specified by
  31. ;;; the MAILRC environment variable) if it exists.  Your mail aliases will
  32. ;;; expand any time you type a word-delimiter at the end of an abbreviation.
  33. ;;;
  34. ;;; What you see is what you get: no abbreviations will be expanded after you
  35. ;;; have sent the mail, unlike the old system.  This means you don't suffer
  36. ;;; the annoyance of having the system do things behind your back -- if an
  37. ;;; address you typed is going to be rewritten, you know it immediately,
  38. ;;; instead of after the mail has been sent and it's too late to do anything
  39. ;;; about it.  You will never again be screwed because you forgot to delete an
  40. ;;; old alias from your .mailrc when a new local user arrives and is given a
  41. ;;; userid which conflicts with one of your aliases, for example.
  42. ;;;
  43. ;;; Your mail alias abbrevs will be in effect only when the point is in an
  44. ;;; appropriate header field.  When in the body of the message, or other
  45. ;;; header fields, the mail aliases will not expand.  Rather, the normal
  46. ;;; mode-specific abbrev table (mail-mode-abbrev-table) will be used if 
  47. ;;; defined.  So if you use mail-mode specific abbrevs, this code will not
  48. ;;; adversely affect you.  You can control which header fields the abbrevs
  49. ;;; are used in by changing the variable mail-abbrev-mode-regexp.
  50. ;;;
  51. ;;; If auto-fill mode is on, abbrevs will wrap at commas instead of at word
  52. ;;; boundaries; also, header continuation-lines will be properly indented.
  53. ;;;
  54. ;;; You can also insert a mail alias with mail-interactive-insert-alias
  55. ;;; (bound to C-c C-a), which prompts you for an alias (with completion)
  56. ;;; and inserts its expansion at point.
  57. ;;;
  58. ;;; This file fixes a bug in the old system which prohibited your .mailrc
  59. ;;; file from having lines like
  60. ;;;
  61. ;;;     alias someone "John Doe <doe@quux.com>"
  62. ;;;
  63. ;;; That is, if you want an address to have embedded spaces, simply surround it
  64. ;;; with double-quotes.  This is necessary because the format of the .mailrc
  65. ;;; file bogusly uses spaces as address delimiters.  The following line defines
  66. ;;; an alias which expands to three addresses:
  67. ;;;
  68. ;;;     alias foobar addr-1 addr-2 "address three <addr-3>"
  69. ;;;
  70. ;;; (This is bogus because mail-delivery programs want commas, not spaces,
  71. ;;; but that's what the file format is, so we have to live with it.)
  72. ;;;
  73. ;;; If you like, you can call the function define-mail-abbrev to define your
  74. ;;; mail aliases instead of using a .mailrc file.  When you call it in this
  75. ;;; way, addresses are separated by commas.
  76. ;;;
  77. ;;; CAVEAT: This works on most Sun systems; I have been told that some versions
  78. ;;; of /bin/mail do not understand double-quotes in the .mailrc file.  So you
  79. ;;; should make sure your version does before including verbose addresses like
  80. ;;; this.  One solution to this, if you are on a system whose /bin/mail doesn't
  81. ;;; work that way, (and you still want to be able to /bin/mail to send mail in
  82. ;;; addition to emacs) is to define minimal aliases (without full names) in
  83. ;;; your .mailrc file, and use define-mail-abbrev to redefine them when sending
  84. ;;; mail from emacs; this way, mail sent from /bin/mail will work, and mail
  85. ;;; sent from emacs will be pretty.
  86. ;;;
  87. ;;; Aliases in the mailrc file may be nested.  If you define aliases like
  88. ;;;     alias group1 fred ethel
  89. ;;;     alias group2 larry curly moe
  90. ;;;     alias everybody group1 group2
  91. ;;; Then when you type "everybody" on the To: line, it will be expanded to
  92. ;;;     fred, ethyl, larry, curly, moe
  93. ;;;
  94. ;;; Aliases may also contain forward references; the alias of "everybody" can
  95. ;;; precede the aliases of "group1" and "group2".
  96. ;;;
  97. ;;; This code also understands the "source" .mailrc command, for reading
  98. ;;; aliases from some other file as well.
  99. ;;;
  100. ;;; Aliases may contain hyphens, as in "alias foo-bar foo@bar"; word-abbrevs
  101. ;;; normally cannot contain hyphens, but this code works around that for the
  102. ;;; specific case of mail-alias word-abbrevs.
  103. ;;;
  104. ;;; To read in the contents of another .mailrc-type file from emacs, use the
  105. ;;; command Meta-X merge-mail-abbrevs.  The rebuild-mail-abbrevs command is
  106. ;;; similar, but will delete existing aliases first.
  107. ;;;
  108. ;;; If you would like your aliases to be expanded when you type M-> or ^N to
  109. ;;; move out of the mail-header into the message body (instead of having to
  110. ;;; type SPC at the end of the abbrev before moving away) then you can do
  111. ;;;
  112. ;;;    (define-key mail-mode-map "\C-n" 'mail-abbrev-next-line)
  113. ;;;    (define-key mail-mode-map "\M->" 'mail-abbrev-end-of-buffer)
  114. ;;;
  115. ;;; If you want multiple addresses separated by a string other than ", " then
  116. ;;; you can set the variable mail-alias-separator-string to it.  This has to
  117. ;;; be a comma bracketed by whitespace if you want any kind of reasonable
  118. ;;; behaviour.
  119. ;;;
  120. ;;; Thanks to Harald Hanche-Olsen, Michael Ernst, David Loeffler, and
  121. ;;; Noah Friedman for suggestions and bug reports.
  122.  
  123. ;;; To use this file, add mail-abbrevs-setup as a hook 
  124. ;;; to the hook list `mail-setup-hook'.
  125.  
  126. ;;; Code:
  127.  
  128. (require 'sendmail)
  129.  
  130. (defvar mail-abbrev-mailrc-file nil
  131.   "Name of file with mail aliases.   If nil, ~/.mailrc is used.")
  132.  
  133. (defmacro mail-abbrev-mailrc-file ()
  134.   '(or mail-abbrev-mailrc-file
  135.        (setq mail-abbrev-mailrc-file
  136.          (or (getenv "MAILRC") "~/.mailrc"))))
  137.  
  138. ;; originally defined in sendmail.el - used to be an alist, now is a table.
  139. (defvar mail-abbrevs nil
  140.   "Word-abbrev table of mail address aliases.
  141. If this is nil, it means the aliases have not yet been initialized and
  142. should be read from the .mailrc file.  (This is distinct from there being
  143. no aliases, which is represented by this being a table with no entries.)")
  144.  
  145. ;;;###autoload
  146. (defun mail-abbrevs-setup ()
  147.   (if (and (not (vectorp mail-abbrevs))
  148.        (file-exists-p (mail-abbrev-mailrc-file)))
  149.       (build-mail-abbrevs))
  150.   (make-local-variable 'pre-abbrev-expand-hook)
  151.   (setq pre-abbrev-expand-hook
  152.     (cond ((and (listp pre-abbrev-expand-hook)
  153.         (not (eq 'lambda (car pre-abbrev-expand-hook))))
  154.        (cons 'sendmail-pre-abbrev-expand-hook pre-abbrev-expand-hook))
  155.       (t
  156.        (list 'sendmail-pre-abbrev-expand-hook pre-abbrev-expand-hook))))
  157.   (abbrev-mode 1))
  158.  
  159. ;;;###autoload
  160. (defun build-mail-abbrevs (&optional file recursivep)
  161.   "Read mail aliases from `~/.mailrc' file and set `mail-abbrevs'."
  162.   (setq file (expand-file-name (or file (mail-abbrev-mailrc-file))))
  163.   (if (vectorp mail-abbrevs)
  164.       nil
  165.     (setq mail-abbrevs nil)
  166.     (define-abbrev-table 'mail-abbrevs '()))
  167.   (message "Parsing %s..." file)
  168.   (let ((buffer nil)
  169.     (obuf (current-buffer)))
  170.     (unwind-protect
  171.     (progn
  172.       (setq buffer (generate-new-buffer "mailrc"))
  173.       (buffer-disable-undo buffer)
  174.       (set-buffer buffer)
  175.       (cond ((get-file-buffer file)
  176.          (insert (save-excursion
  177.                (set-buffer (get-file-buffer file))
  178.                (buffer-substring (point-min) (point-max)))))
  179.         ((not (file-exists-p file)))
  180.         (t (insert-file-contents file)))
  181.       ;; Don't lose if no final newline.
  182.       (goto-char (point-max))
  183.       (or (eq (preceding-char) ?\n) (newline))
  184.       (goto-char (point-min))
  185.       ;; Delete comments from the file
  186.       (while (search-forward "# " nil t)
  187.         (let ((p (- (point) 2)))
  188.           (end-of-line)
  189.           (delete-region p (point))))
  190.       (goto-char (point-min))
  191.       ;; handle "\\\n" continuation lines
  192.       (while (not (eobp))
  193.         (end-of-line)
  194.         (if (= (preceding-char) ?\\)
  195.         (progn (delete-char -1) (delete-char 1) (insert ?\ ))
  196.             (forward-char 1)))
  197.       (goto-char (point-min))
  198.       (while (re-search-forward
  199.           "^\\(a\\(lias\\)?\\|g\\(roup\\)?\\|source\\)[ \t]+" nil t)
  200.         (beginning-of-line)
  201.         (if (looking-at "source[ \t]+\\([^ \t\n]+\\)")
  202.         (progn
  203.           (end-of-line)
  204.           (build-mail-abbrevs
  205.            (substitute-in-file-name
  206.             (buffer-substring (match-beginning 1) (match-end 1)) t)))
  207.           (re-search-forward "[ \t]+\\([^ \t\n]+\\)")
  208.           (let* ((name (buffer-substring
  209.                 (match-beginning 1) (match-end 1)))
  210.              (start (progn (skip-chars-forward " \t") (point))))
  211.         (end-of-line)
  212. ;        (message "** %s \"%s\"" name (buffer-substring start (point)))(sit-for 1)
  213.         (define-mail-abbrev
  214.             name
  215.             (buffer-substring start (point))
  216.             t))))
  217.       ;; Resolve forward references in .mailrc file.
  218.       ;; This would happen automatically before the first abbrev was
  219.       ;; expanded, but why not do it now.
  220.       (or recursivep (mail-resolve-all-aliases))
  221.       mail-abbrevs)
  222.       (if buffer (kill-buffer buffer))
  223.       (set-buffer obuf)))
  224.     (message "Parsing %s... done" file))
  225.  
  226. (defvar mail-alias-separator-string ", "
  227.   "*A string inserted between addresses in multi-address mail aliases.
  228. This has to contain a comma, so \", \" is a reasonable value.  You might 
  229. also want something like \",\\n    \" to get each address on its own line.")
  230.  
  231. ;; define-mail-abbrev sets this flag, which causes mail-resolve-all-aliases
  232. ;; to be called before expanding abbrevs if it's necessary.
  233. (defvar mail-abbrev-aliases-need-to-be-resolved t)
  234.  
  235. ;; originally defined in mailalias.el ; build-mail-abbrevs calls this with
  236. ;; stuff parsed from the .mailrc file.
  237. ;;
  238. ;;;###autoload
  239. (defun define-mail-abbrev (name definition &optional from-mailrc-file)
  240.   "Define NAME as a mail-abbrev that translates to DEFINITION.
  241. If DEFINITION contains multiple addresses, separate them with commas."
  242.   ;; When this is called from build-mail-abbrevs, the third argument is
  243.   ;; true, and we do some evil space->comma hacking like /bin/mail does.
  244.   (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
  245.   ;; Read the defaults first, if we have not done so.
  246.   (if (vectorp mail-abbrevs)
  247.       nil
  248.     (setq mail-abbrevs nil)
  249.     (define-abbrev-table 'mail-abbrevs '())
  250.     (if (file-exists-p (mail-abbrev-mailrc-file))
  251.     (build-mail-abbrevs)))
  252.   ;; strip garbage from front and end
  253.   (if (string-match "\\`[ \t\n,]+" definition)
  254.       (setq definition (substring definition (match-end 0))))
  255.   (if (string-match "[ \t\n,]+\\'" definition)
  256.       (setq definition (substring definition 0 (match-beginning 0))))
  257.   (let ((result '())
  258.     (start 0)
  259.     (L (length definition))
  260.     end)
  261.     (while start
  262.       ;; If we're reading from the mailrc file, then addresses are delimited
  263.       ;; by spaces, and addresses with embedded spaces must be surrounded by
  264.       ;; double-quotes.  Otherwise, addresses are separated by commas.
  265.       (if from-mailrc-file
  266.       (if (eq ?\" (aref definition start))
  267.           (setq start (1+ start)
  268.             end (string-match "\"[ \t,]*" definition start))
  269.           (setq end (string-match "[ \t,]+" definition start)))
  270.       (setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start)))
  271.       (setq result (cons (substring definition start end) result))
  272.       (setq start (and end
  273.                (/= (match-end 0) L)
  274.                (match-end 0))))
  275.     (setq definition (mapconcat (function identity)
  276.                 (nreverse result)
  277.                 mail-alias-separator-string)))
  278.   (setq mail-abbrev-aliases-need-to-be-resolved t)
  279.   (setq name (downcase name))
  280.   ;; use an abbrev table instead of an alist for mail-abbrevs.
  281.   (let ((abbrevs-changed abbrevs-changed))  ; protect this from being changed.
  282.     (define-abbrev mail-abbrevs name definition 'mail-abbrev-expand-hook)))
  283.  
  284.  
  285. (defun mail-resolve-all-aliases ()
  286.   "Resolve all forward references in the mail aliases table."
  287.   (if mail-abbrev-aliases-need-to-be-resolved
  288.       (progn
  289. ;;    (message "Resolving mail aliases...")
  290.     (if (vectorp mail-abbrevs)
  291.         (mapatoms (function mail-resolve-all-aliases-1) mail-abbrevs))
  292.     (setq mail-abbrev-aliases-need-to-be-resolved nil)
  293. ;;    (message "Resolving mail aliases... done.")
  294.     )))
  295.  
  296. (defun mail-resolve-all-aliases-1 (sym &optional so-far)
  297.   (if (memq sym so-far)
  298.       (error "mail alias loop detected: %s"
  299.          (mapconcat 'symbol-name (cons sym so-far) " <- ")))
  300.   (let ((definition (and (boundp sym) (symbol-value sym))))
  301.     (if definition
  302.     (let ((result '())
  303.           (start 0))
  304.       (while start
  305.         (let ((end (string-match "[ \t\n]*,[, \t\n]*" definition start)))
  306.           (setq result (cons (substring definition start end) result)
  307.             start (and end (match-end 0)))))
  308.       (setq definition
  309.         (mapconcat (function (lambda (x)
  310.                  (or (mail-resolve-all-aliases-1
  311.                    (intern-soft x mail-abbrevs)
  312.                    (cons sym so-far))
  313.                  x)))
  314.                (nreverse result)
  315.                mail-alias-separator-string))
  316.       (set sym definition))))
  317.   (symbol-value sym))
  318.  
  319.  
  320. (defun mail-abbrev-expand-hook ()
  321.   "For use as the fourth arg to define-abbrev.
  322. After expanding a mail-abbrev, if fill-mode is on and we're past the
  323. fill-column, break the line at the previous comma, and indent the next
  324. line."
  325.   (save-excursion
  326.     (let ((p (point))
  327.       bol comma fp)
  328.       (beginning-of-line)
  329.       (setq bol (point))
  330.       (goto-char p)
  331.       (while (and auto-fill-function
  332.           (>= (current-column) fill-column)
  333.           (search-backward "," bol t))
  334.     (setq comma (point))
  335.     (forward-char 1)        ; Now we are just past the comma.
  336.     (insert "\n")
  337.     (delete-horizontal-space)
  338.      (setq p (point))
  339.     (indent-relative)
  340.     (setq fp (buffer-substring p (point)))
  341.     ;; Go to the end of the new line.
  342.     (end-of-line)
  343.     (if (> (current-column) fill-column)
  344.         ;; It's still too long; do normal auto-fill.
  345.         (let ((fill-prefix (or fp "\t")))
  346.           (do-auto-fill)))
  347.     ;; Resume the search.
  348.     (goto-char comma)
  349.     ))))
  350.  
  351. ;;; Syntax tables and abbrev-expansion
  352.  
  353. (defvar mail-abbrev-mode-regexp "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\):"
  354.   "*Regexp to select mail-headers in which mail-abbrevs should be expanded.
  355. This string it will be handed to `looking-at' with the point at the beginning
  356. of the current line; if it matches, abbrev mode will be turned on, otherwise
  357. it will be turned off.  (You don't need to worry about continuation lines.)
  358. This should be set to match those mail fields in which you want abbreviations
  359. turned on.")
  360.  
  361. (defvar mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table)
  362.   "The syntax table which is used in send-mail mode message bodies.")
  363.  
  364. (defvar mail-mode-header-syntax-table
  365.   (let ((tab (copy-syntax-table text-mode-syntax-table)))
  366.     ;; This makes the characters "@%!._-" be considered symbol-constituents
  367.     ;; but not word-constituents, so forward-sexp will move you over an
  368.     ;; entire address, but forward-word will only move you over a sequence
  369.     ;; of alphanumerics.  (Clearly the right thing.)
  370.     (modify-syntax-entry ?@ "_" tab)
  371.     (modify-syntax-entry ?% "_" tab)
  372.     (modify-syntax-entry ?! "_" tab)
  373.     (modify-syntax-entry ?. "_" tab)
  374.     (modify-syntax-entry ?_ "_" tab)
  375.     (modify-syntax-entry ?- "_" tab)
  376.     (modify-syntax-entry ?< "(>" tab)
  377.     (modify-syntax-entry ?> ")<" tab)
  378.     tab)
  379.   "The syntax table used in send-mail mode when in a mail-address header.
  380. mail-mode-syntax-table is used when the cursor is in the message body or in
  381. non-address headers.")
  382.  
  383. (defvar mail-abbrev-syntax-table
  384.   (let* ((tab (copy-syntax-table mail-mode-header-syntax-table))
  385.      (i (1- (length tab)))
  386.      (_ (aref (standard-syntax-table) ?_))
  387.      (w (aref (standard-syntax-table) ?w)))
  388.     (while (>= i 0)
  389.       (if (= (aref tab i) _) (aset tab i w))
  390.       (setq i (1- i)))
  391.     tab)
  392.   "The syntax-table used for abbrev-expansion purposes; this is not actually
  393. made the current syntax table of the buffer, but simply controls the set of
  394. characters which may be a part of the name of a mail-alias.")
  395.  
  396.  
  397. (defun mail-abbrev-in-expansion-header-p ()
  398.   "Whether point is in a mail-address header field."
  399.   (let ((case-fold-search t))
  400.     (and ;;
  401.          ;; we are on an appropriate header line...
  402.      (save-excursion
  403.        (beginning-of-line)
  404.        ;; skip backwards over continuation lines.
  405.        (while (and (looking-at "^[ \t]")
  406.            (not (= (point) (point-min))))
  407.      (forward-line -1))
  408.        ;; are we at the front of an appropriate header line?
  409.        (looking-at mail-abbrev-mode-regexp))
  410.      ;;
  411.      ;; ...and we are before the mail-header-separator
  412.      (< (point)
  413.     (save-excursion
  414.       (goto-char (point-min))
  415.       (search-forward (concat "\n" mail-header-separator "\n")
  416.               nil 0)
  417.       (point))))))
  418.  
  419. (defvar mail-mode-abbrev-table) ; quiet the compiler
  420.  
  421. (defun sendmail-pre-abbrev-expand-hook ()
  422.   (and (and mail-abbrevs (not (eq mail-abbrevs t)))
  423.        (if (mail-abbrev-in-expansion-header-p)
  424.        (progn
  425.          ;;
  426.          ;; We are in a To: (or CC:, or whatever) header, and
  427.          ;; should use word-abbrevs to expand mail aliases.
  428.  
  429.          ;; Before anything else, resolve aliases if they need it.
  430.          (and mail-abbrev-aliases-need-to-be-resolved
  431.           (mail-resolve-all-aliases))
  432.  
  433.          ;; Now proceed with the abbrev section.
  434.          ;;   -  First, install the mail-abbrevs as the word-abbrev table.
  435.          ;;   -  Then install the mail-abbrev-syntax-table, which
  436.          ;;      temporarily marks all of the
  437.          ;;      non-alphanumeric-atom-characters (the "_"
  438.          ;;      syntax ones) as being normal word-syntax.  We do this
  439.          ;;      because the C code for expand-abbrev only works on words,
  440.          ;;      and we want these characters to be considered words for
  441.          ;;      the purpose of abbrev expansion.
  442.          ;;   -  Then we call expand-abbrev again, recursively, to do
  443.          ;;      the abbrev expansion with the above syntax table.
  444.          ;;   -  Then we do a trick which tells the expand-abbrev frame
  445.          ;;      which invoked us to not continue (and thus not
  446.          ;;      expand twice.) This means that any abbrev expansion
  447.          ;;      will happen as a result of this function's call to
  448.          ;;      expand-abbrev, and not as a result of the call to
  449.          ;;      expand-abbrev which invoked *us*.
  450.          ;;   -  Then we set the syntax table to
  451.          ;;      mail-mode-header-syntax-table, which doesn't have
  452.          ;;      anything to do with abbrev expansion, but
  453.          ;;      is just for the user's convenience (see its doc string.)
  454.          ;;
  455.  
  456.          (setq local-abbrev-table mail-abbrevs)
  457.  
  458.          ;; If the character just typed was non-alpha-symbol-syntax,
  459.          ;; then don't expand the abbrev now (that is, don't expand
  460.          ;; when the user types -.)  Check the character's syntax in
  461.          ;; the mail-mode-header-syntax-table.
  462.  
  463.          (set-syntax-table mail-mode-header-syntax-table)
  464.          (or (and (integerp last-command-char)
  465.               (eq (char-syntax last-command-char) ?_))
  466.          (let ((pre-abbrev-expand-hook nil)) ; That's us; don't loop.
  467.            ;; Use this table so that abbrevs can have hyphens in them.
  468.            (set-syntax-table mail-abbrev-syntax-table)
  469.            (expand-abbrev)
  470.            ;; Now set it back to what it was before.
  471.            (set-syntax-table mail-mode-header-syntax-table)))
  472.          (setq abbrev-start-location (point) ; This is the trick.
  473.            abbrev-start-location-buffer (current-buffer)))
  474.  
  475.      ;; We're not in a mail header where mail aliases should
  476.      ;; be expanded, then use the normal mail-mode abbrev table
  477.      ;; (if any) and the normal mail-mode syntax table.
  478.  
  479.      (setq local-abbrev-table (and (boundp 'mail-mode-abbrev-table)
  480.                        mail-mode-abbrev-table))
  481.      (set-syntax-table mail-mode-syntax-table))
  482.        ))
  483.  
  484. ;;; utilities
  485.  
  486. (defun merge-mail-abbrevs (file)
  487.   "Merge mail aliases from the given file with existing ones."
  488.   (interactive (list
  489.         (let ((insert-default-directory t)
  490.               (default-directory (expand-file-name "~/"))
  491.               (def (mail-abbrev-mailrc-file)))
  492.           (read-file-name
  493.             (format "Read additional aliases from file: (default %s) "
  494.                 def)
  495.             default-directory
  496.             (expand-file-name def default-directory)
  497.             t))))
  498.   (build-mail-abbrevs file))
  499.  
  500. (defun rebuild-mail-abbrevs (file)
  501.   "Rebuild all the mail aliases from the given file."
  502.   (interactive (list
  503.         (let ((insert-default-directory t)
  504.               (default-directory (expand-file-name "~/"))
  505.               (def (mail-abbrev-mailrc-file)))
  506.           (read-file-name
  507.            (format "Read mail aliases from file: (default %s) " def)
  508.            default-directory
  509.            (expand-file-name def default-directory)
  510.            t))))
  511.   (setq mail-abbrevs nil)
  512.   (build-mail-abbrevs file))
  513.  
  514. (defun mail-interactive-insert-alias (&optional alias)
  515.   "Prompt for and insert a mail alias."
  516.   (interactive (progn
  517.         (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
  518.         (list (completing-read "Expand alias: " mail-abbrevs nil t))))
  519.   (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
  520.   (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) "")))
  521.  
  522. (defun mail-abbrev-next-line (&optional arg)
  523.   "Expand any mail abbrev, then move cursor vertically down ARG lines.
  524. If there is no character in the target line exactly under the current column,
  525. the cursor is positioned after the character in that line which spans this
  526. column, or at the end of the line if it is not long enough.
  527. If there is no line in the buffer after this one,
  528. a newline character is inserted to create a line
  529. and the cursor moves to that line.
  530.  
  531. The command \\[set-goal-column] can be used to create
  532. a semipermanent goal column to which this command always moves.
  533. Then it does not try to move vertically.  This goal column is stored
  534. in `goal-column', which is nil when there is none.
  535.  
  536. If you are thinking of using this in a Lisp program, consider
  537. using `forward-line' instead.  It is usually easier to use
  538. and more reliable (no dependence on goal column, etc.)."
  539.   (interactive "p")
  540.   (if (looking-at "[ \t]*\n") (expand-abbrev))
  541.   (setq this-command 'next-line)
  542.   (next-line arg))
  543.  
  544. (defun mail-abbrev-end-of-buffer (&optional arg)
  545.   "Expand any mail abbrev, then move point to end of buffer.
  546. Leave mark at previous position.
  547. With arg N, put point N/10 of the way from the true end.
  548.  
  549. Don't use this command in Lisp programs!
  550. \(goto-char (point-max)) is faster and avoids clobbering the mark."
  551.   (interactive "p")
  552.   (if (looking-at "[ \t]*\n") (expand-abbrev))
  553.   (setq this-command 'end-of-buffer)
  554.   (end-of-buffer arg))
  555.  
  556. (define-key mail-mode-map "\C-c\C-a" 'mail-interactive-insert-alias)
  557.  
  558. ;;(define-key mail-mode-map "\C-n" 'mail-abbrev-next-line)
  559. ;;(define-key mail-mode-map "\M->" 'mail-abbrev-end-of-buffer)
  560.  
  561. (provide 'mailabbrev)
  562.